home *** CD-ROM | disk | FTP | other *** search
- This demo shows some of the features of the Windows 95 API
- Specifically, it uses the SHFileOperation function. This code
- accompanies the Programming Techniques column (October Visual
- Basic Programmer's Journal).
-
- By Jonathan Wood, SoftCircuits 1996 (http://www.softcircuits.com)
-
- Notes:
- - As explained in the October column, Visual Basic 4 cannot take
- full advantage of SHFileOperation becuase of UDT-alignment
- issues. Specifically, the SHFILEOPSTRUCT UDT cannot be declared
- and constructed exactly as required by SHFileOperation and only
- the first 5 members are valid. For example, SHFileOperation
- shows the name of each file being processed unless you specify
- FOF_SIMPLEPROGRESS. If this flag is specified, the function
- takes a message in lpszProgressTitle. You cannot currently do
- this from Visual Basic.
-